home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / mc220.zip / HELLO.C < prev    next >
C/C++ Source or Header  |  1992-02-24  |  129b  |  10 lines

  1. /*
  2.  * Standard 'C' demo... Say hello to the world
  3.  */
  4. #include \mc\stdio.h
  5.  
  6. main()
  7. {
  8.     fputs("Hello world\n", stdout);
  9. }
  10.